home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / v cisle / hexer / mpth_17.exe / {app} / scripts / customprops.lng.deu < prev    next >
Text File  |  2005-10-24  |  2KB  |  58 lines

  1. option title "Benutzerdefinierte Dateieigenschaften anzeigen/editieren"
  2.  
  3. goto __EOF
  4.  
  5. @@create_propdlg
  6. if (GuiExists('dlgProperties'))
  7.   GuiDestroy('dlgProperties')
  8. endif
  9.  
  10. GuiCreate('FORM', 'dlgProperties', 'Left', 366, 'Top', 213, 'BorderStyle', GUI_BORDER_DIALOG, 'Caption', 'Benutzer-Dateieigenschaften', 'ClientHeight', 203, 'ClientWidth',  448, 'Position', GUI_FORMPOS_SCREENCENTER)
  11.  
  12. GuiCreate('STATIC', 'dlgProperties.Label1', 'Left', 12, 'Top', 8,'Width', 87, 'Height', 13, 'Caption', 'Eigenschaften:')
  13.  
  14. GuiCreate('LISTBOX', 'dlgProperties.Lbprops', 'Left', 12, 'Top', 28,'Width', 425, 'Height', 129, 'OnClick', 'lbclick')
  15.  
  16. GuiCreate('BUTTON', 'dlgProperties.btnModify', 'Left',12, 'Top', 168,'Width', 75, 'Height', 25, 'Caption', '─ndern', 'Enabled', 0, 'OnClick', 'btnModify_Click')
  17.  
  18. GuiCreate('BUTTON', 'dlgProperties.btnRemove', 'Left', 92, 'Top', 168,'Width', 75, 'Height', 25, 'Caption', 'L÷schen', 'Enabled', 0, 'OnClick', 'btnRemove_Click')
  19.  
  20. GuiCreate('BUTTON', 'dlgProperties.btnAdd', 'Left', 172, 'Top', 168,'Width',75, 'Height', 25, 'Caption', 'Neu', 'OnClick', 'btnAdd_Click')
  21.  
  22.  
  23. GuiCreate('BUTTON', 'dlgProperties.btnClose', 'Left', 364, 'Top', 168,'Width', 75, 'Height', 25, 'Caption', 'Schlie▀en', 'ModalResult', IDOK)
  24.  
  25. return
  26.  
  27. DEF __STR_1 'Eigenschaft Σndern'
  28.  
  29.  
  30. @@create_itemdlg
  31. if (GuiExists('dlgItem'))
  32.   GuiDestroy('dlgItem')
  33. endif
  34.  
  35.  
  36. GuiCreate('FORM', 'dlgItem', 'BorderStyle', GUI_BORDER_DIALOG, 'Caption', 'Eigenschaft hinzufⁿgen', 'ClientHeight', 130, 'ClientWidth',  266, 'Position', GUI_FORMPOS_SCREENCENTER)
  37.  
  38. GuiCreate('STATIC', 'dlgItem.Label1', 'Left', 8, 'Top', 12, 'Caption', 'Name:')
  39.  
  40. GuiCreate('STATIC', 'dlgItem.Label2', 'Left', 8, 'Top', 40, 'Caption', 'Wert:')
  41.  
  42. GuiCreate('EDIT', 'dlgItem.edName', 'Left', 88, 'Top', 8, 'Width', 165, 'Text', '', 'OnChange', 'dlgItem_EditChange')
  43.  
  44. GuiCreate('EDIT', 'dlgItem.edValue', 'Left', 88, 'Top', 36, 'Width', 165, 'Text', '', 'OnChange', 'dlgItem_EditChange')
  45.  
  46. GuiCreate('CHECKBOX', 'dlgItem.cbNumber', 'Left',88, 'Top', 68,'Width', 165, 'Caption', 'Numerisch', 'OnClick', 'dlgItem_EditChange')
  47.  
  48. GuiCreate('BUTTON', 'dlgItem.btnOK', 'Left', 88, 'Top', 96,'Width', 75, 'Height', 25, 'Caption', 'OK', 'Enabled', 0, 'Default', 1, 'ModalResult', IDOK)
  49.  
  50. GuiCreate('BUTTON', 'dlgItem.btnCancel', 'Left', 180, 'Top', 96,'Width',75, 'Height', 25, 'Caption', 'Abbruch', 'Cancel', 1, 'ModalResult', IDCANCEL)
  51.  
  52.  
  53.  
  54. return
  55.  
  56.  
  57. @@__EOF
  58.